@charset "UTF-8";
/*
* 公共样式
*/
html,
body {
  height: 100%;
}

.loading-success {
  visibility: visible;
}

.not-allowed {
  cursor: not-allowed !important;
}

.ellipsis {
  overflow: hidden;
  /*规定当文本溢出包含元素时发生的事情*/
  white-space: nowrap;
  /*如何处理元素内的空白符。nowrap表示文本不会换行，文本会在在同一行上继续，直到遇到 <br> 标签为止。*/
  text-overflow: ellipsis;
  /*显示省略符号来代表被修剪的文本*/
}

/* 多行溢出 */
.ellipsis-2 {
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  /*限制在一个块元素显示的文本的行数*/
  -webkit-box-orient: vertical;
  /*设置或检索伸缩盒对象的子元素的排列方式*/
}

.ellipsis-3 {
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  /*限制在一个块元素显示的文本的行数*/
  -webkit-box-orient: vertical;
  /*设置或检索伸缩盒对象的子元素的排列方式*/
}

.ellipsis-4 {
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 4;
  /*限制在一个块元素显示的文本的行数*/
  -webkit-box-orient: vertical;
  /*设置或检索伸缩盒对象的子元素的排列方式*/
}

.ellipsis-5 {
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 5;
  /*限制在一个块元素显示的文本的行数*/
  -webkit-box-orient: vertical;
  /*设置或检索伸缩盒对象的子元素的排列方式*/
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

input::-o-clear {
  display: none;
}

.layui-btn,
.layui-input,
.layui-textarea,
.layui-upload-button,
.layui-select {
  transition: none;
  -webkit-transition: none;
}

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 4px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background: #ccc;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 0;
  background: transparent;
}

/* 滚动条交互点 */
::-webkit-scrollbar-corner {
  background-color: transparent;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

@font-face {
  /*font-family: "PingFang_CG";*/
  /*src: url("../../module/font/PFJT/PingFang_CG.otf");*/
  /*font-family: "PingFang_ZH";*/
  /*src: url("../../module/font/PFJT/PingFang_ZH.otf");*/
}
body,
html,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
img,
div,
table,
td,
th,
input,
a {
  margin: 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "PingFang_CG";
}

a,
a:active,
a:visited {
  text-decoration: none !important;
}

img {
  border: 0 none;
  overflow: hidden;
}

.clear:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.display {
  display: inline-block;
  vertical-align: top;
}

.w1200 {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.w1024 {
  position: relative;
  width: 1024px;
  margin: 0 auto;
}

.risen-layout-header {
  position: relative;
  width: 100%;
}
.risen-layout-header .header-inner {
  position: relative;
  background: #fff;
  z-index: 999;
  -webkit-box-shadow: 0px 4px 17px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 17px 3px rgba(0, 0, 0, 0.05);
}
.risen-layout-header .header-inner .header-wrap {
  position: relative;
  width: 1024px;
  margin: 0 auto;
  height: 70px;
  font-size: 0;
}
.risen-layout-header .header-inner .header-wrap .fll-logo {
  width: 225px;
  height: 70px;
  position: relative;
  float: left;
  margin-right: 30px;
}
.risen-layout-header .header-inner .header-wrap .fll-logo .header-logo {
  position: relative;
  height: 70px;
  line-height: 70px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.risen-layout-header .header-inner .header-wrap .fll-logo .rbs-box .img, .risen-layout-header .header-inner .header-wrap .fll-logo .rbs-box img {
  height: 32px;
}
.risen-layout-header .header-inner .header-wrap .fll-logo .wl-box {
  width: 120px;
}
.risen-layout-header .header-inner .header-wrap .fll-logo .wl-box img {
  width: 120px;
  height: 32px;
  vertical-align: -8px;
}
.risen-layout-header .header-inner .header-wrap .header-nav {
  float: left;
  height: 70px;
  line-height: 70px;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu {
  height: 70px;
  line-height: 70px;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li {
  float: left;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li > a {
  position: relative;
  display: block;
  padding: 0 15px;
  font-size: 16px;
  line-height: 70px;
  color: #333333;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li > a .layui-icon {
  display: inline-block;
  font-size: 10px;
  color: #999999;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li > a:hover {
  color: #D00B16;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li > a:hover .layui-icon {
  color: #D00B16;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li.current > a {
  color: #D00B16;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li.hasicon > a {
  cursor: default;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li.active a {
  color: #D00B16 !important;
}
.risen-layout-header .header-inner .header-wrap .header-nav .common-menu > li.active .layui-icon-down {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.risen-layout-header .header-inner .header-wrap .header-tools {
  position: relative;
  float: right;
  text-align: right;
}
.risen-layout-header .header-inner .header-wrap .header-tools .search-query,
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap {
  position: relative;
  float: left;
  height: 70px;
}
.risen-layout-header .header-inner .header-wrap .header-tools .search-query {
  position: relative;
  width: 100%;
  margin-right: 5px;
  overflow: hidden;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap {
  width: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 70px;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap .phone {
  width: 13px;
  height: 16px;
  margin: 0 auto;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap i {
  font-size: 18px;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap:hover i,
.risen-layout-header .header-inner .header-wrap .header-tools .btn-login:hover {
  color: #D00B16;
}
.risen-layout-header .header-inner .header-wrap .header-tools .btn-wrap > a.on {
  color: #333;
  font-size: 16px;
  color: #fff;
  background: #d33a25;
}
.risen-layout-header .header-inner .header-wrap .admin-nav {
  cursor: pointer;
}
.risen-layout-header .header-inner .header-wrap .admin-nav .btn-login {
  line-height: 70px;
  color: #333;
  font-size: 16px;
}
.risen-layout-header .common-topbar-dropdown {
  color: #fff;
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  -webkit-box-shadow: 0 12px 10px 0 rgba(19, 12, 12, 0.07);
          box-shadow: 0 12px 10px 0 rgba(19, 12, 12, 0.07);
  width: 100%;
  max-height: 400px !important;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: auto;
  -webkit-transition: height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-top: 1px solid #eee;
}
.risen-layout-header .common-topbar-dropdown .common-menu-dropdown {
  color: #1b2226;
  background: transparent;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  display: none;
  z-index: 1;
  padding-top: 0;
}
.risen-layout-header .common-topbar-dropdown .common-menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.risen-layout-header .common-topbar-dropdown .all-menu-container {
  position: relative;
  height: 100%;
  overflow: auto;
}
.risen-layout-header .common-topbar-dropdown .ace-view-center {
  width: 1200px;
  margin: 0 auto;
}
.risen-layout-header .common-topbar-dropdown .close-btn {
  cursor: pointer;
  position: absolute;
  height: 37px;
  z-index: 9;
  right: 20px;
  color: #3d3d3d;
  font-size: 20px;
}
.risen-layout-header .common-topbar-dropdown .base-padding {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
.risen-layout-header .common-topbar-dropdown .fake-background {
  position: absolute;
  height: 100%;
  width: 50%;
  background: #f5f5f6;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 45px;
  overflow-x: hidden;
  overflow-y: auto;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap {
  position: relative;
  float: left;
  width: 25%;
  height: 100%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 20px;
  padding-right: 20px;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .level-type-title {
  display: block;
  text-align: left;
  font-size: 18px;
  line-height: 30px;
  font-family: "PingFang_ZH";
  color: #D00B16;
  margin-bottom: 20px;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .level-type-title .layui-icon {
  font-size: 18px;
  vertical-align: 0;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .level-list-box {
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .list-dl {
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .list-dl li .list-dd-title {
  text-align: left;
  line-height: 40px;
  font-size: 14px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .list-dl li .list-dd-title:hover {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .level-menu-wrap .level-item-wrap .list-dl li + li {
  margin-top: 10px;
}
.risen-layout-header .common-topbar-dropdown .menu-product {
  position: relative;
  height: 100%;
  overflow: auto;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 40px;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product li {
  margin-bottom: 30px;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product li p {
  line-height: 30px;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product li .name {
  font-size: 16px;
  color: #333;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product li .intro {
  font-size: 14px;
  color: #999;
}
.risen-layout-header .common-topbar-dropdown .menu-product .list-product li:hover a .name {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways {
  position: relative;
  background: #fff;
  min-height: 258px;
  height: 100%;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left {
  width: 240px;
  background: #f5f5f6;
  overflow-y: auto;
  height: 100%;
  float: left;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .block-left-title {
  position: relative;
  display: block;
  margin-bottom: 5px;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #181818;
  font-size: 14px;
  cursor: pointer;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .block-left-title span,
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .block-left-title i {
  display: inline-block;
  vertical-align: middle;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .block-left-title:hover {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side {
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li {
  height: 36px;
  line-height: 36px;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title {
  cursor: default;
  display: block;
  color: #181818;
  font-size: 14px;
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title .type-title-cn {
  display: inline-block;
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title .type-title-cn-border {
  width: 100%;
  bottom: 4px;
  position: absolute;
  border-bottom: 2px solid #D00B16;
  padding-bottom: 6px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title:hover {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title:hover .type-title-cn-border {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title.active {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-left .menu-left-side li .type-title.active .type-title-cn-border {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right {
  position: absolute;
  left: 240px;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-menu-wrap {
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 45px;
  overflow-x: hidden;
  overflow-y: auto;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap {
  position: relative;
  float: left;
  width: 25%;
  height: 100%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 20px;
  padding-right: 20px;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap .second-type-title {
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 40px;
  font-family: "PingFang_ZH";
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap .second-list-box {
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap .list-dl {
  position: relative;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap .list-dl li .list-dd-title {
  text-align: left;
  line-height: 35px;
  font-size: 13px;
  color: #181818;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-inner-wrap .second-item-wrap .list-dl li .list-dd-title:hover {
  color: #D00B16;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .block-right .second-menu-wrap.on {
  display: block;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .public-type-title span,
.risen-layout-header .common-topbar-dropdown .menu-ways .public-type-title i {
  display: inline-block;
  vertical-align: 0;
}
.risen-layout-header .common-topbar-dropdown .menu-ways .public-type-title i {
  font-size: 12px !important;
}
.risen-layout-header .common-topbar-dropdown.expand {
  opacity: 1;
  visibility: visible;
}

.fixed-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #eee;
}

.fixed-top {
  padding-top: 70px;
}

.risen-layout-footer {
  color: #fff;
  background: #282626;
}
.risen-layout-footer .top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  padding-top: 50px;
  padding-bottom: 40px;
}
.risen-layout-footer .top .item {
  float: left;
  width: 199px;
  height: 260px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}
.risen-layout-footer .top .item:nth-child(3) {
  width: 152px;
}
.risen-layout-footer .top .item.w400 {
  width: 400px;
}
.risen-layout-footer .top .item.w315 {
  width: 314px;
}
.risen-layout-footer .top .item.last {
  width: auto;
  padding: 0;
  padding-left: 38px;
}
.risen-layout-footer .top .item h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}
.risen-layout-footer .top .item a {
  display: block;
  color: #fff;
  padding: 9px 0;
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.risen-layout-footer .top .item .boxs {
  width: 120px;
}
.risen-layout-footer .top .item .boxs:nth-child(1) {
  margin-bottom: 40px;
}
.risen-layout-footer .top .item .boxs img {
  display: block;
  margin: auto;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.risen-layout-footer .top .item .boxs h6 {
  font-size: 14px;
  color: #fff;
  text-align: center;
  font-weight: 400;
}
.risen-layout-footer .bottom {
  padding: 10px 0;
}
.risen-layout-footer .bottom p {
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}

.risen-layout-mian {
  width: 100%;
  height: auto;
  min-height: 1000px;
}

#footer {
  display: block;
}
